8a294f523e638ce4757490856acfa4d0467fdcb8,src/org/exist/xmldb/RemoteCollection.java,RemoteCollection,hasChildCollection,#String#,246
Before Change
}
protected boolean hasChildCollection(String name) throws XMLDBException {
if (childCollections == null)
readCollection();
try {
return childCollections.containsKey(XmldbURI.xmldbUriFor(name));
} catch(URISyntaxException e) {
After Change
protected boolean hasChildCollection(String name) throws XMLDBException {
// AF Always refresh cache for latest set - if (childCollections == null)
readCollection();
try {
return childCollections.containsKey(XmldbURI.xmldbUriFor(name));
} catch(URISyntaxException e) {